home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / amiga / plotting / gnuplot3.lzh / gnuplot / term.h < prev    next >
C/C++ Source or Header  |  1991-09-05  |  4KB  |  118 lines

  1. /* GNUPLOT - term.h */
  2. /*
  3.  * Copyright (C) 1986, 1987, 1990, 1991   Thomas Williams, Colin Kelley
  4.  *
  5.  * Permission to use, copy, and distribute this software and its
  6.  * documentation for any purpose with or without fee is hereby granted, 
  7.  * provided that the above copyright notice appear in all copies and 
  8.  * that both that copyright notice and this permission notice appear 
  9.  * in supporting documentation.
  10.  *
  11.  * Permission to modify the software is granted, but not the right to
  12.  * distribute the modified code.  Modifications are to be distributed 
  13.  * as patches to released version.
  14.  *  
  15.  * This software is provided "as is" without express or implied warranty.
  16.  * 
  17.  *
  18.  * AUTHORS
  19.  * 
  20.  *   Original Software:
  21.  *     Thomas Williams,  Colin Kelley.
  22.  * 
  23.  *   Gnuplot 2.0 additions:
  24.  *       Russell Lang, Dave Kotz, John Campbell.
  25.  *
  26.  *   Gnuplot 3.0 additions:
  27.  *       Gershon Elber and many others.
  28.  * 
  29.  * Send your comments or suggestions to 
  30.  *  pixar!info-gnuplot@sun.com.
  31.  * This is a mailing list; to join it send a note to 
  32.  *  pixar!info-gnuplot-request@sun.com.  
  33.  * Send bug reports to
  34.  *  pixar!bug-gnuplot@sun.com.
  35.  */
  36.  
  37. /*
  38.  * term.h: terminal support definitions
  39.  *   Edit this file depending on the set of terminals you wish to support.
  40.  * Comment out the terminal types that you don't want or don't have, and
  41.  * uncomment those that you want included. Be aware that some terminal 
  42.  * types (eg, SUN, UNIXPLOT) will require changes in the makefile 
  43.  * LIBS definition. 
  44.  */
  45.  
  46. /* These terminals are not relevant for MSDOS */
  47. #ifndef MSDOS
  48.  
  49. #ifdef AMIGA_LC_5_1
  50. #define AMIGASCREEN    /* Amiga custom screen */
  51.  
  52. #else /* AMIGA_LC_5_1 */
  53.  
  54. #ifdef AMIGA_AC_5
  55. #define AMIGASCREEN    /* Amiga custom screen */
  56. #endif
  57. #define AED        /* AED 512 and AED 767 */
  58. #define BITGRAPH    /* BBN BitGraph */
  59. /* #define CGI        /* SCO CGI */
  60. /* #define IRIS4D    /* IRIS4D series computer */
  61. #define KERMIT        /* MS-Kermit Tektronix 4010 emulator */
  62. #define FIG           /* Fig graphics language */
  63. #define REGIS        /* ReGis graphics (vt125, vt220, vt240, Gigis...) */
  64. #define SELANAR        /* Selanar */
  65. /* #define SUN        /* Sun Microsystems Workstation */
  66. #define T410X        /* Tektronix 4106, 4107, 4109 and 420x terminals */
  67. #define TEK        /* Tektronix 4010, and probably others */
  68. /* #define UNIXPC    /* unixpc (ATT 3b1 or ATT 7300) */
  69. /* #define UNIXPLOT    /* unixplot */
  70. #define VTTEK        /* VT-like tek40xx emulators */
  71. /* #define X11        /* X11R4 window system */
  72.  
  73. #endif /* AMIGA_LC_5_1 */
  74.  
  75. #define DXY800A        /* Roland DXY800A plotter */
  76.  
  77. #define HP2648        /* HP2648, HP2647 */
  78. #define HP26        /* HP2623A and maybe others */
  79. #define HP75        /* HP7580, and probably other HPs */
  80. #define IMAGEN      /* Imagen laser printers (300dpi) (requires -Iterm also) */
  81.  
  82. #define NEC        /* NEC CP6 pinwriter printer */
  83. #define PRESCRIBE    /* Kyocera Laser printer */
  84. #define QMS        /* QMS/QUIC laserprinter (Talaris 1200 and others) */
  85. #define STARC        /* Star Color Printer */
  86. #define TANDY60        /* Tandy DMP-130 series 60-dot per inch graphics */
  87. #define V384        /* Vectrix 384 and tandy color printer */
  88.  
  89. #endif /* MSDOS */
  90.  
  91. /* These terminals can be used on any system */
  92. #define DUMB
  93.  
  94. #define HPGL        /* HP7475, HP7220 plotters, and (hopefully) lots of others */
  95.  
  96. #define POSTSCRIPT    /* Postscript */
  97.  
  98. /* #define DXF        /* DXF format for use with AutoCad (Release 10.x) */
  99.  
  100. #define EEPIC        /* EEPIC-extended LaTeX driver, for EEPIC users */
  101. #define EMTEX        /* LATEX picture environment with EMTEX specials */
  102. #define EPS60        /* Epson-style 60-dot per inch printers */
  103. #define EPSONP        /* Epson LX-800, Star NL-10, NX-1000 and lots of others */
  104. #define HPLJII        /* HP LaserJet II */
  105. #define LATEX        /* LATEX picture environment */
  106.  
  107. /* These are for MSDOS only */
  108. #ifdef MSDOS
  109. #ifdef __TURBOC__
  110. #define ATT6300        /* AT&T 6300 graphics */
  111. #else
  112. #define ATT6300        /* AT&T 6300 graphics */
  113. #define CORONA        /* Corona graphics 325 */
  114. #define HERCULES    /* IBM PC/Clone with Hercules graphics board */
  115. #endif /* __TURBOC__ */
  116. #endif /* MSDOS */
  117.  
  118.